home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / sun4c / archive / tcltk.z / tcltk / slib / tk / demos / mkPuzzle.tcl < prev    next >
Text File  |  1994-09-20  |  2KB  |  60 lines

  1. # mkPuzzle w
  2. #
  3. # Create a top-level window containing a 15-puzzle game.
  4. #
  5. # Arguments:
  6. #    w -    Name to use for new top-level window.
  7.  
  8. proc mkPuzzle {{w .p1}} {
  9.     global xpos ypos
  10.     catch {destroy $w}
  11.     toplevel $w
  12.     dpos $w
  13.     wm title $w "15-Puzzle Demonstration"
  14.     wm iconname $w "15-Puzzle"
  15.  
  16.     message $w.msg -font -Adobe-times-medium-r-normal--*-180* -aspect 300 \
  17.         -text "A 15-puzzle appears below as a collection of buttons.  Click on any of the pieces next to the space, and that piece will slide over the space.  Continue this until the pieces are arranged in numerical order from upper-left to lower-right.  Click the \"OK\" button when you've finished playing."
  18.     frame $w.frame -geometry 120x120 -borderwidth 2 -relief sunken \
  19.     -bg Bisque3
  20.     button $w.ok -text OK -command "destroy $w"
  21.     pack $w.msg -side top
  22.     pack $w.frame -side top -padx 5 -pady 5
  23.     pack $w.ok -side bottom -fill x
  24.  
  25.     set order {3 1 6 2 5 7 15 13 4 11 8 9 14 10 12}
  26.     for {set i 0} {$i < 15} {set i [expr $i+1]} {
  27.     set num [lindex $order $i]
  28.     set xpos($num) [expr ($i%4)*.25]
  29.     set ypos($num) [expr ($i/4)*.25]
  30.     button $w.frame.$num -relief raised -text $num \
  31.         -command "puzzle.switch $w $num"
  32.     place $w.frame.$num -relx $xpos($num) -rely $ypos($num) \
  33.         -relwidth .25 -relheight .25
  34.     }
  35.     set xpos(space) .75
  36.     set ypos(space) .75
  37. }
  38.  
  39. # Procedure invoked by buttons in the puzzle to resize the puzzle entries:
  40.  
  41. proc puzzle.switch {w num} {
  42.     global xpos ypos
  43.     if {(($ypos($num) >= ($ypos(space) - .01))
  44.         && ($ypos($num) <= ($ypos(space) + .01))
  45.         && ($xpos($num) >= ($xpos(space) - .26))
  46.         && ($xpos($num) <= ($xpos(space) + .26)))
  47.         || (($xpos($num) >= ($xpos(space) - .01))
  48.         && ($xpos($num) <= ($xpos(space) + .01))
  49.         && ($ypos($num) >= ($ypos(space) - .26))
  50.         && ($ypos($num) <= ($ypos(space) + .26)))} {
  51.     set tmp $xpos(space)
  52.     set xpos(space) $xpos($num)
  53.     set xpos($num) $tmp
  54.     set tmp $ypos(space)
  55.     set ypos(space) $ypos($num)
  56.     set ypos($num) $tmp
  57.     place $w.frame.$num -relx $xpos($num) -rely $ypos($num)
  58.     }
  59. }
  60.